home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.level1._x > -2300)
- {
- this._x = 1000;
- this._visible = false;
- }
- else
- {
- this._visible = true;
- }
- if(_root.levmoveR)
- {
- this._x -= 3;
- }
- if(_root.levmoveL)
- {
- this._x += 3;
- }
- if(_root.jumpR)
- {
- this._x -= 6;
- }
- if(_root.jumpL)
- {
- this._x += 6;
- }
- if(_root.notarget11)
- {
- this._x -= 6;
- }
- if(this._x < 550)
- {
- _root.b11i._visible = true;
- }
- if(this._x < _root.sheep._x + 80)
- {
- _root.hitarea11 = true;
- _root.notarget11 = false;
- }
- if(this._x > _root.sheep._x + 120)
- {
- _root.hitarea11 = false;
- _root.notarget11 = true;
- }
- if(_root.hitarea11)
- {
- if(_root.hit11)
- {
- _root.hit11 = false;
- _root.bot11life -= _root.levelhit;
- if(_root.stronghit)
- {
- _root.bot11life -= 1;
- }
- if(_root.highkick)
- {
- _root.bot11life -= _root.levelhit + 5;
- _root.highkick = false;
- gotoAndPlay(34);
- }
- gotoAndPlay(27);
- }
- }
- }
-